home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
extra
/
pro11
/
example.bas
< prev
next >
Wrap
BASIC Source File
|
1993-10-24
|
739b
|
23 lines
'* EXAMPLE.BAS
'* How to use the SOS-ENGINE with BASIC
'*
'* Be sure to add SOSFUNC to your link line
'* Example: LINK example sosfunc,,,,
DEFINT A-Z
CALL SeOnLog 'Turn on logging
CALL SeOffPntr 'Turn off file pointer logging
CALL SeOffMem 'Turn off memory access logging
CALL SeOffWrite 'Turn off file write logging
PRINT
PRINT "Logging activated."
PRINT "File pointer movement logging de-activated."
PRINT "Memory access logging de-activated."
PRINT "File write logging de-activated."
END